@extends('layout') @section('title') {{ $service->seo_title }} @php $tags = ''; if($service->tags){ foreach (json_decode($service->tags) as $service_tag) { $tags .= $service_tag->value.', '; } } @endphp @endsection @section('frontend-content')

{{__('admin.Select Schedule')}}

{{__('admin.Booking Summery')}}

    @if ($service->features) @foreach (json_decode($service->features) as $feature) @if ($feature)
  • {{ $feature }}
  • @endif @endforeach @endif

{{__('admin.Package Fee')}} {{ currency($service->price) }}

{{__('admin.Extra Service')}} {{ currency(0.00) }}

{{__('admin.Total')}} {{ currency($service->price) }}

@endsection